adTempus API
ArcanaDevelopment.adTempus.CustomObjectSupport Namespace / CustomTaskExecutorBase<T> Class / Execute(ICustomObjectSettings,ITaskExecutionContext,Object) Method
The settings for the Custom Task
The execution context for the task.
An optional return value for the task. This will be stored in the job history and is available to Responses and other job steps. The value returned here does not determine the success or failure of the step; that is determined by the return value of the method.

In This Topic
    Execute(ICustomObjectSettings,ITaskExecutionContext,Object) Method
    In This Topic
    Executes the Custom Task
    Syntax
    'Declaration
     
    
    Public Function Execute( _
       ByVal taskSettings As ICustomObjectSettings, _
       ByVal context As ITaskExecutionContext, _
       ByRef returnValue As Object _
    ) As Boolean

    Parameters

    taskSettings
    The settings for the Custom Task
    context
    The execution context for the task.
    returnValue
    An optional return value for the task. This will be stored in the job history and is available to Responses and other job steps. The value returned here does not determine the success or failure of the step; that is determined by the return value of the method.
    Remarks
    This method sets the TaskSettings and ExecutionContext and then calls Execute to execute the task.
    See Also